home *** CD-ROM | disk | FTP | other *** search
- /*
- File: Assertions.c
-
- Contains: Assertion routines.
-
- Version: Appearance 1.0 SDK
-
- Copyright: © 1997 by Apple Computer, Inc., all rights reserved.
-
- File Ownership:
-
- DRI: Edward Voas
-
- Other Contact: 7 of 9, Borg Collective
-
- Technology: OS Technologies Group
-
- Writers:
-
- (edv) Ed Voas
-
- Change History (most recent first):
-
- <1> 9/11/97 edv First checked in.
- */
-
- #define DEBUG_MSG_TYPE 0
-
- #include "Assertions.h"
- #include <stdio.h>
- #include <Types.h>
- #include <TextUtils.h>
-
- void AssertMsg( char* msg, char* file, int line )
- {
-
- char newMsg[256];
-
- sprintf( newMsg, "%s, File: %s, Line: %d", msg, file, line );
- DebugStr( c2pstr( newMsg ) );
- }
-